home *** CD-ROM | disk | FTP | other *** search
/ Shareware Super Platinum 8 / Shareware Super Platinum 8.iso / mac / ARCHIVE / UC2INS.ZIP;1 / U2_CHECK.BAT < prev    next >
Encoding:
DOS Batch File  |  1994-01-01  |  494 b   |  26 lines

  1. @echo off
  2. echo off
  3. rem (C) Copyright 1993, Ad Infinitum Programs, all rights reserved
  4. rem
  5. rem This batch file is called to check the contents of an archive. The
  6. rem current directory and all subdirectories can be checked for
  7. rem viruses etc. If no problems are found U$~CHK3 should be created.
  8. rem
  9.  
  10. rem *** McAffee 100 or higher ***
  11.  
  12.    scan . /sub
  13.  
  14.    if errorlevel 1 goto end
  15.  
  16.  
  17. rem *** F-PROT ***
  18.  
  19.    f-prot .
  20.  
  21.    if errorlevel 1 goto end
  22.  
  23.  
  24. echo check > u$~chk3
  25. :end
  26.